home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / OpenBSD / comp21.tar.gz / comp21.tar / usr / include / netinet / in_pcb.h < prev    next >
C/C++ Source or Header  |  1997-02-28  |  5KB  |  113 lines

  1. /*    $OpenBSD: in_pcb.h,v 1.4 1997/02/28 04:03:48 angelos Exp $    */
  2. /*    $NetBSD: in_pcb.h,v 1.14 1996/02/13 23:42:00 christos Exp $    */
  3.  
  4. /*
  5.  * Copyright (c) 1982, 1986, 1990, 1993
  6.  *    The Regents of the University of California.  All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  *    This product includes software developed by the University of
  19.  *    California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  *
  36.  *    @(#)in_pcb.h    8.1 (Berkeley) 6/10/93
  37.  */
  38.  
  39. #include <sys/queue.h>
  40.  
  41. /*
  42.  * Common structure pcb for internet protocol implementation.
  43.  * Here are stored pointers to local and foreign host table
  44.  * entries, local and foreign socket numbers, and pointers
  45.  * up (to a socket structure) and down (to a protocol-specific)
  46.  * control block.
  47.  */
  48. struct inpcb {
  49.     LIST_ENTRY(inpcb) inp_hash;
  50.     CIRCLEQ_ENTRY(inpcb) inp_queue;
  51.     struct      inpcbtable *inp_table;
  52.     struct      in_addr inp_faddr;    /* foreign host table entry */
  53.     struct      in_addr inp_laddr;    /* local host table entry */
  54.     u_int16_t inp_fport;        /* foreign port */
  55.     u_int16_t inp_lport;        /* local port */
  56.     struct      socket *inp_socket;    /* back pointer to socket */
  57.     caddr_t      inp_ppcb;        /* pointer to per-protocol pcb */
  58.     struct      route inp_route;    /* placeholder for routing entry */
  59.     int      inp_flags;        /* generic IP/datagram flags */
  60.     struct      ip inp_ip;        /* header prototype; should have more */
  61.     struct      mbuf *inp_options;    /* IP options */
  62.     struct      ip_moptions *inp_moptions; /* IP multicast options */
  63.     u_char       inp_seclevel[4];    /* Only the first 3 are used for now */
  64. #define SL_AUTH           0             /* Authentication level */
  65. #define SL_ESP_TRANS      1             /* ESP transport level */
  66. #define SL_ESP_NETWORK    2             /* ESP network (encapsulation) level */
  67. };
  68.  
  69. struct inpcbtable {
  70.     CIRCLEQ_HEAD(, inpcb) inpt_queue;
  71.     LIST_HEAD(inpcbhead, inpcb) *inpt_hashtbl;
  72.     u_long      inpt_hash;
  73.     u_int16_t inpt_lastport;
  74. };
  75.  
  76. /* flags in inp_flags: */
  77. #define    INP_RECVOPTS        0x01    /* receive incoming IP options */
  78. #define    INP_RECVRETOPTS        0x02    /* receive IP options for reply */
  79. #define    INP_RECVDSTADDR        0x04    /* receive IP dst address */
  80. #define    INP_CONTROLOPTS        (INP_RECVOPTS|INP_RECVRETOPTS|INP_RECVDSTADDR)
  81. #define    INP_HDRINCL        0x08    /* user supplies entire IP header */
  82. #define INP_HIGHPORT        0x10    /* user wants "high" port binding */
  83. #define INP_LOWPORT        0x20    /* user wants "low" port binding */
  84.  
  85. #define    INPLOOKUP_WILDCARD    1
  86. #define    INPLOOKUP_SETLOCAL    2
  87.  
  88. #define    sotoinpcb(so)    ((struct inpcb *)(so)->so_pcb)
  89.  
  90. #ifdef _KERNEL
  91. void     in_losing __P((struct inpcb *));
  92. int     in_pcballoc __P((struct socket *, void *));
  93. int     in_pcbbind __P((void *, struct mbuf *));
  94. int     in_pcbconnect __P((void *, struct mbuf *));
  95. void     in_pcbdetach __P((void *));
  96. void     in_pcbdisconnect __P((void *));
  97. struct inpcb *
  98.      in_pcbhashlookup __P((struct inpcbtable *, struct in_addr,
  99.                    u_int, struct in_addr, u_int));
  100. void     in_pcbinit __P((struct inpcbtable *, int));
  101. struct inpcb *
  102.      in_pcblookup __P((struct inpcbtable *,
  103.         struct in_addr, u_int, struct in_addr, u_int, int));
  104. void     in_pcbnotify __P((struct inpcbtable *, struct sockaddr *,
  105.         u_int, struct in_addr, u_int, int, void (*)(struct inpcb *, int)));
  106. void     in_pcbnotifyall __P((struct inpcbtable *, struct sockaddr *,
  107.         int, void (*)(struct inpcb *, int)));
  108. void     in_pcbrehash __P((struct inpcb *));
  109. void     in_rtchange __P((struct inpcb *, int));
  110. void     in_setpeeraddr __P((struct inpcb *, struct mbuf *));
  111. void     in_setsockaddr __P((struct inpcb *, struct mbuf *));
  112. #endif
  113.